home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
win
/
pascal
/
filedll.com
/
TEST2.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1991-04-23
|
271 b
|
17 lines
Program DLLTest;
uses WinTypes, winprocs,DLLfdlg;
var
aName,
aPath,
aCaption: pChar;
begin
aPath := 'f:\*.*';
aName := 'FileOpen';
aCaption := 'Open Default';
DoFileOpen(0, aPath);
DofileDialog(0, aPath, aName, aCaption);
end.